home *** CD-ROM | disk | FTP | other *** search
/ Merciful 2 / Merciful - Disc 2.iso / software / i / imagefxv2.1a.lha / ImageFX / Rexx / AutoFX / SaveRenderedAs_ILBM.ifx.pre < prev    next >
Text File  |  1996-03-02  |  1KB  |  44 lines

  1. /*
  2.  * SaveRenderedAs_ILBM.ifx.pre
  3.  * Written by Thomas Krehbiel
  4.  *
  5.  * Save rendered image.
  6.  *
  7.  * Inputs:
  8.  *    Word(Arg(1),1) = Sequence number (?)
  9.  *    Word(Arg(1),2) = Total number of frames (N)
  10.  *
  11.  * Returns:
  12.  *    0 if successful, non-zero on failure
  13.  *
  14.  */
  15.  
  16. OPTIONS RESULTS
  17.  
  18. lastpath = GETCLIP('Autofx_SaveRenderAsILBM_Path')
  19. lastext  = GETCLIP('Autofx_SaveRenderAsILBM_Ext')
  20.  
  21. IF lastpath = "" THEN DO
  22.    GetPrefs RendPath
  23.    lastpath = result
  24.    END
  25.  
  26. IF lastext = "" THEN lastext = ".iff"
  27.  
  28. Gadget.1 = 'STRING  120  5 200 14 "Output Path:" "'lastpath'"'
  29. Gadget.2 = 'FILEREQ 321  5  20 14 "Output Path:" "'lastpath'" AT=1 DIRONLY'
  30. Gadget.3 = 'STRING  120 20 200 14 "New Extension:" "'lastext'"'
  31. Gadget.4 = 'TEXT    120 36   1  1 "(** = current frame number)" 1'
  32. Gadget.5 = 'END'
  33.  
  34. NewComplexRequest '"Save Rendered Image As ILBM"' Gadget 360 53
  35. IF rc ~= 0 THEN EXIT rc
  36.  
  37. lastpath = result.1
  38. lastext  = result.3
  39.  
  40. CALL SETCLIP('Autofx_SaveRenderAsILBM_Path', lastpath)
  41. CALL SETCLIP('Autofx_SaveRenderAsILBM_Ext', lastext)
  42.  
  43. EXIT
  44.